home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / vbasic / insure2.exe / FORMLOAD.FRM < prev    next >
Text File  |  1993-07-22  |  3KB  |  98 lines

  1. VERSION 2.00
  2. Begin Form FormLoad 
  3.    AutoRedraw      =   -1  'True
  4.    BackColor       =   &H00404040&
  5.    BorderStyle     =   0  'None
  6.    Caption         =   "Insurance Company of America"
  7.    ClientHeight    =   5670
  8.    ClientLeft      =   570
  9.    ClientTop       =   1485
  10.    ClientWidth     =   8580
  11.    ControlBox      =   0   'False
  12.    Height          =   6075
  13.    Icon            =   FORMLOAD.FRX:0000
  14.    Left            =   510
  15.    LinkMode        =   1  'Source
  16.    LinkTopic       =   "Form1"
  17.    MaxButton       =   0   'False
  18.    MinButton       =   0   'False
  19.    ScaleHeight     =   5670
  20.    ScaleWidth      =   8580
  21.    Top             =   1140
  22.    Width           =   8700
  23.    Begin Timer Timer1 
  24.       Left            =   3000
  25.       Top             =   2520
  26.    End
  27.    Begin PictureBox Picture1 
  28.       AutoRedraw      =   -1  'True
  29.       AutoSize        =   -1  'True
  30.       Height          =   3630
  31.       Left            =   3480
  32.       Picture         =   FORMLOAD.FRX:0302
  33.       ScaleHeight     =   3600
  34.       ScaleWidth      =   2880
  35.       TabIndex        =   0
  36.       Top             =   1680
  37.       Width           =   2910
  38.    End
  39.    Begin Label Label1 
  40.       Alignment       =   2  'Center
  41.       BackColor       =   &H00C0C0C0&
  42.       BorderStyle     =   1  'Fixed Single
  43.       Caption         =   "Insurance prototype application for Microsoft Windows for Pens"
  44.       FontBold        =   -1  'True
  45.       FontItalic      =   0   'False
  46.       FontName        =   "Times New Roman"
  47.       FontSize        =   18
  48.       FontStrikethru  =   0   'False
  49.       FontUnderline   =   0   'False
  50.       Height          =   855
  51.       Index           =   1
  52.       Left            =   1440
  53.       TabIndex        =   2
  54.       Top             =   5520
  55.       Width           =   6735
  56.    End
  57.    Begin Label Label1 
  58.       Alignment       =   2  'Center
  59.       BackColor       =   &H00C0C0C0&
  60.       BorderStyle     =   1  'Fixed Single
  61.       Caption         =   "Life Insurance "
  62.       FontBold        =   -1  'True
  63.       FontItalic      =   0   'False
  64.       FontName        =   "Times New Roman"
  65.       FontSize        =   48
  66.       FontStrikethru  =   0   'False
  67.       FontUnderline   =   0   'False
  68.       Height          =   1095
  69.       Index           =   0
  70.       Left            =   1560
  71.       TabIndex        =   1
  72.       Top             =   360
  73.       Width           =   6735
  74.    End
  75. End
  76. Sub Form_Load ()
  77. screen.MousePointer = 11
  78. formload.WindowState = 2
  79. formload.Show
  80. x% = DoEvents()
  81. Load form1
  82. Load form2
  83. Load form3
  84. Load report
  85. form1.Show
  86.  
  87. Rem timer1.interval = 30
  88. Rem timer1.enabled = -1
  89. screen.MousePointer = 0
  90. End Sub
  91.  
  92. Sub Timer1_Timer ()
  93. form1.Show
  94. timer1.Enabled = 0
  95. Unload formload
  96. End Sub
  97.  
  98.